home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 4 / QRZ Ham Radio Callsign Database - Volume 4.iso / files / dsp / 56ktools / dspkgctr.z / dspkgctr / gcc / flow.c < prev    next >
C/C++ Source or Header  |  1992-06-08  |  64KB  |  2,059 lines

  1. /* Data flow analysis for GNU compiler.
  2.    Copyright (C) 1987, 1988 Free Software Foundation, Inc.
  3.  
  4.    $Id: flow.c,v 1.2 91/08/06 10:02:56 jeff Exp $
  5.  
  6. This file is part of GNU CC.
  7.  
  8. GNU CC is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation; either version 1, or (at your option)
  11. any later version.
  12.  
  13. GNU CC is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. GNU General Public License for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with GNU CC; see the file COPYING.  If not, write to
  20. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  21.  
  22.  
  23. /* This file contains the data flow analysis pass of the compiler.
  24.    It computes data flow information
  25.    which tells combine_instructions which insns to consider combining
  26.    and controls register allocation.
  27.  
  28.    Additional data flow information that is too bulky to record
  29.    is generated during the analysis, and is used at that time to
  30.    create autoincrement and autodecrement addressing.
  31.  
  32.    The first step is dividing the function into basic blocks.
  33.    find_basic_blocks does this.  Then life_analysis determines
  34.    where each register is live and where it is dead.
  35.  
  36.    ** find_basic_blocks **
  37.  
  38.    find_basic_blocks divides the current function's rtl
  39.    into basic blocks.  It records the beginnings and ends of the
  40.    basic blocks in the vectors basic_block_head and basic_block_end,
  41.    and the number of blocks in n_basic_blocks.
  42.  
  43.    find_basic_blocks also finds any unreachable loops
  44.    and deletes them.
  45.  
  46.    ** life_analysis **
  47.  
  48.    life_analysis is called immediately after find_basic_blocks.
  49.    It uses the basic block information to determine where each
  50.    hard or pseudo register is live.
  51.  
  52.    ** live-register info **
  53.  
  54.    The information about where each register is live is in two parts:
  55.    the REG_NOTES of insns, and the vector basic_block_live_at_start.
  56.  
  57.    basic_block_live_at_start has an element for each basic block,
  58.    and the element is a bit-vector with a bit for each hard or pseudo
  59.    register.  The bit is 1 if the register is live at the beginning
  60.    of the basic block.
  61.  
  62.    To each insn's REG_NOTES is added an element for each register
  63.    that is live before the insn or set by the insn, but is dead
  64.    after the insn.
  65.  
  66.    To determine which registers are live after any insn, one can
  67.    start from the beginning of the basic block and scan insns, noting
  68.    which registers are set by each insn and which die there.
  69.  
  70.    ** Other actions of life_analysis **
  71.  
  72.    life_analysis sets up the LOG_LINKS fields of insns because the
  73.    information needed to do so is readily available.
  74.  
  75.    life_analysis deletes insns whose only effect is to store a value
  76.    that is never used.
  77.  
  78.    life_analysis notices cases where a reference to a register as
  79.    a memory address can be combined with a preceding or following
  80.    incrementation or decrementation of the register.  The separate
  81.    instruction to increment or decrement is deleted and the address
  82.    is changed to a POST_INC or similar rtx.
  83.  
  84.    Each time an incrementing or decrementing address is created,
  85.    a REG_INC element is added to the insn's REG_NOTES list.
  86.  
  87.    life_analysis fills in certain vectors containing information about
  88.    register usage: reg_n_refs, reg_n_deaths, reg_n_sets,
  89.    reg_live_length, reg_n_calls_crosses and reg_basic_block.  */
  90.  
  91. #include <stdio.h>
  92. #include "config.h"
  93. #include "rtl.h"
  94. #if ! defined( _INTELC32_ )
  95. #include "basic-block.h"
  96. #include "regs.h"
  97. #include "hard-reg-set.h"
  98. #else
  99. #include "bblock.h"
  100. #include "regs.h"
  101. #include "hardrset.h"
  102. #endif
  103. #include "flags.h"
  104.  
  105. #include "obstack.h"
  106. #define obstack_chunk_alloc xmalloc
  107. #define obstack_chunk_free free
  108.  
  109. extern int xmalloc ();
  110. extern void free ();
  111.  
  112. /* Get the basic block number of an insn.
  113.    This info should not be expected to remain available
  114.    after the end of life_analysis.  */
  115.  
  116. #define BLOCK_NUM(INSN)  uid_block_number[INSN_UID (INSN)]
  117.  
  118. /* This is where the BLOCK_NUM values are really stored.
  119.    This is set up by find_basic_blocks and used there and in life_analysis,
  120.    and then freed.  */
  121.  
  122. static short *uid_block_number;
  123.  
  124. /* INSN_VOLATILE (insn) is 1 if the insn refers to anything volatile.  */
  125.  
  126. #define INSN_VOLATILE(INSN) uid_volatile[INSN_UID (INSN)]
  127. static char *uid_volatile;
  128.  
  129. /* Number of basic blocks in the current function.  */
  130.  
  131. int n_basic_blocks;
  132.  
  133. /* Maximum register number used in this function, plus one.  */
  134.  
  135. int max_regno;
  136.  
  137. /* Indexed by n, gives number of basic block that  (REG n) is used in.
  138.    If the value is REG_BLOCK_GLOBAL (-2),
  139.    it means (REG n) is used in more than one basic block.
  140.    REG_BLOCK_UNKNOWN (-1) means it hasn't been seen yet so we don't know.
  141.    This information remains valid for the rest of the compilation
  142.    of the current function; it is used to control register allocation.  */
  143.  
  144. short *reg_basic_block;
  145.  
  146. /* Indexed by n, gives number of times (REG n) is used or set, each
  147.    weighted by its loop-depth.
  148.    This information remains valid for the rest of the compilation
  149.    of the current function; it is used to control register allocation.  */
  150.  
  151. short *reg_n_refs;
  152.  
  153. /* Indexed by n, gives number of times (REG n) is set.
  154.    This information remains valid for the rest of the compilation
  155.    of the current function; it is used to control register allocation.  */
  156.  
  157. short *reg_n_sets;
  158.  
  159. /* Indexed by N, gives number of places register N dies.
  160.    This information remains valid for the rest of the compilation
  161.    of the current function; it is used to control register allocation.  */
  162.  
  163. short *reg_n_deaths;
  164.  
  165. /* Indexed by N, gives 1 if that reg is live across any CALL_INSNs.
  166.    This information remains valid for the rest of the compilation
  167.    of the current function; it is used to control register allocation.  */
  168.  
  169. int *reg_n_calls_crossed;
  170.  
  171. /* Total number of instructions at which (REG n) is live.
  172.    The larger this is, the less priority (REG n) gets for
  173.    allocation in a real register.
  174.    This information remains valid for the rest of the compilation
  175.    of the current function; it is used to control register allocation.
  176.  
  177.    local-alloc.c may alter this number to change the priority.
  178.  
  179.    Negative values are special.
  180.    -1 is used to mark a pseudo reg which has a constant or memory equivalent
  181.    and is used infrequently enough that it should not get a hard register.
  182.    -2 is used to mark a pseudo reg for a parameter, when a frame pointer
  183.    is not required.  global-alloc.c makes an allocno for this but does
  184.    not try to assign a hard register to it.  */
  185.  
  186. int *reg_live_length;
  187.  
  188. /* Element N is the next insn that uses (hard or pseudo) register number N
  189.    within the current basic block; or zero, if there is no such insn.
  190.    This is valid only during the final backward scan in propagate_block.  */
  191.  
  192. static rtx *reg_next_use;
  193.  
  194. /* Size of a regset for the current function,
  195.    in (1) bytes and (2) elements.  */
  196.  
  197. int regset_bytes;
  198. int regset_size;
  199.  
  200. /* Element N is first insn in basic block N.
  201.    This info lasts until we finish compiling the function.  */
  202.  
  203. rtx *basic_block_head;
  204.  
  205. /* Element N is last insn in basic block N.
  206.    This info lasts until we finish compiling the function.  */
  207.  
  208. rtx *basic_block_end;
  209.  
  210. /* Element N is a regset describing the registers live
  211.    at the start of basic block N.
  212.    This info lasts until we finish compiling the function.  */
  213.  
  214. regset *basic_block_live_at_start;
  215.  
  216. /* Regset of regs live when calls to `setjmp'-like functions happen.  */
  217.  
  218. regset regs_live_at_setjmp;
  219.  
  220. /* Element N is nonzero if control can drop into basic block N
  221.    from the preceding basic block.  Freed after life_analysis.  */
  222.  
  223. static char *basic_block_drops_in;
  224.  
  225. /* Element N is depth within loops of basic block number N.
  226.    Freed after life_analysis.  */
  227.  
  228. static short *basic_block_loop_depth;
  229.  
  230. /* Element N nonzero if basic block N can actually be reached.
  231.    Vector exists only during find_basic_blocks.  */
  232.  
  233. static char *block_live_static;
  234.  
  235. /* Depth within loops of basic block being scanned for lifetime analysis,
  236.    plus one.  This is the weight attached to references to registers.  */
  237.  
  238. static int loop_depth;
  239.  
  240. /* Define AUTO_INC_DEC if machine has any kind of incrementing
  241.    or decrementing addressing.  */
  242.  
  243. #ifdef HAVE_PRE_DECREMENT
  244. #define AUTO_INC_DEC
  245. #endif
  246.  
  247. #ifdef HAVE_PRE_INCREMENT
  248. #define AUTO_INC_DEC
  249. #endif
  250.  
  251. #ifdef HAVE_POST_DECREMENT
  252. #define AUTO_INC_DEC
  253. #endif
  254.  
  255. #ifdef HAVE_POST_INCREMENT
  256. #define AUTO_INC_DEC
  257. #endif
  258.  
  259. /* Forward declarations */
  260. static void find_basic_blocks ();
  261. static void life_analysis ();
  262. static void mark_label_ref ();
  263. void allocate_for_life_analysis (); /* Used also in stupid_life_analysis */
  264. static void init_regset_vector ();
  265. static void propagate_block ();
  266. static void mark_set_regs ();
  267. static void mark_used_regs ();
  268. static int insn_dead_p ();
  269. static int libcall_dead_p ();
  270. static int try_pre_increment ();
  271. static int try_pre_increment_1 ();
  272. static rtx find_use_as_address ();
  273. void dump_flow_info ();
  274.  
  275. /* Find basic blocks of the current function and perform data flow analysis.
  276.    F is the first insn of the function and NREGS the number of register numbers
  277.    in use.  */
  278.  
  279. void
  280. flow_analysis (f, nregs, file)
  281.      rtx f;
  282.      int nregs;
  283.      FILE *file;
  284. {
  285.   register rtx insn;
  286.   register int i;
  287.   register int max_uid = 0;
  288.  
  289.   /* Count the basic blocks.  Also find maximum insn uid value used.  */
  290.  
  291.   {
  292.     register RTX_CODE prev_code = JUMP_INSN;
  293.     register RTX_CODE code;
  294.  
  295.     for (insn = f, i = 0; insn; insn = NEXT_INSN (insn))
  296.       {
  297.     code = GET_CODE (insn);
  298.     if (INSN_UID (insn) > max_uid)
  299.       max_uid = INSN_UID (insn);
  300.     if (code == CODE_LABEL
  301.         || (prev_code != INSN && prev_code != CALL_INSN
  302.         && prev_code != CODE_LABEL
  303.         && (code == INSN || code == CALL_INSN || code == JUMP_INSN)))
  304.       i++;
  305.     if (code != NOTE)
  306.       prev_code = code;
  307.       }
  308.   }
  309.  
  310.   /* Allocate some tables that last till end of compiling this function
  311.      and some needed only in find_basic_blocks and life_analysis.  */
  312.  
  313.   n_basic_blocks = i;
  314.   basic_block_head = (rtx *) oballoc (n_basic_blocks * sizeof (rtx));
  315.   basic_block_end = (rtx *) oballoc (n_basic_blocks * sizeof (rtx));
  316.   basic_block_drops_in = (char *) alloca (n_basic_blocks);
  317.   basic_block_loop_depth = (short *) alloca (n_basic_blocks * sizeof (short));
  318.   uid_block_number = (short *) alloca ((max_uid + 1) * sizeof (short));
  319.   uid_volatile = (char *) alloca (max_uid + 1);
  320.   bzero (uid_volatile, max_uid + 1);
  321.  
  322.   find_basic_blocks (f);
  323.   life_analysis (f, nregs);
  324.   if (file)
  325.     dump_flow_info (file);
  326.  
  327.   basic_block_drops_in = 0;
  328.   uid_block_number = 0;
  329.   basic_block_loop_depth = 0;
  330. }
  331.  
  332. /* Find all basic blocks of the function whose first insn is F.
  333.    Store the correct data in the tables that describe the basic blocks,
  334.    set up the chains of references for each CODE_LABEL, and
  335.    delete any entire basic blocks that cannot be reached.  */
  336.  
  337. static void
  338. find_basic_blocks (f)
  339.      rtx f;
  340. {
  341.   register rtx insn;
  342.   register int i;
  343.  
  344.   /* Initialize the ref chain of each label to 0.  */
  345.   /* Record where all the blocks start and end and their depth in loops.  */
  346.   /* For each insn, record the block it is in.  */
  347.  
  348.   {
  349.     register RTX_CODE prev_code = JUMP_INSN;
  350.     register RTX_CODE code;
  351.     int depth = 1;
  352.  
  353.     for (insn = f, i = -1; insn; insn = NEXT_INSN (insn))
  354.       {
  355.     code = GET_CODE (insn);
  356.     if (code == NOTE)
  357.       {
  358.         if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_BEG)
  359.           depth++;
  360.         else if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_END)
  361.           depth--;
  362.       }
  363.     else if (code == CODE_LABEL
  364.          || (prev_code != INSN && prev_code != CALL_INSN
  365.              && prev_code != CODE_LABEL
  366.              && (code == INSN || code == CALL_INSN || code == JUMP_INSN)))
  367.       {
  368.         basic_block_head[++i] = insn;
  369.         basic_block_end[i] = insn;
  370.         basic_block_loop_depth[i] = depth;
  371.         if (code == CODE_LABEL)
  372.           LABEL_REFS (insn) = insn;
  373.       }
  374.     else if (code == INSN || code == CALL_INSN || code == JUMP_INSN)
  375.       basic_block_end[i] = insn;
  376.     BLOCK_NUM (insn) = i;
  377.     if (code != NOTE)
  378.       prev_code = code;
  379.       }
  380.     if (i + 1 != n_basic_blocks)
  381.       abort ();
  382.   }
  383.  
  384.   /* Record which basic blocks control can drop in to.  */
  385.  
  386.   {
  387.     register int i;
  388.     for (i = 0; i < n_basic_blocks; i++)
  389.       {
  390.     register rtx insn = PREV_INSN (basic_block_head[i]);
  391.     /* TEMP1 is used to avoid a bug in Sequent's compiler.  */
  392.     register int temp1;
  393.     while (insn && GET_CODE (insn) == NOTE)
  394.       insn = PREV_INSN (insn);
  395.     temp1 = insn && GET_CODE (insn) != BARRIER;
  396.     basic_block_drops_in[i] = temp1;
  397.       }
  398.   }
  399.  
  400.   /* Now find which basic blocks can actually be reached
  401.      and put all jump insns' LABEL_REFS onto the ref-chains
  402.      of their target labels.  */
  403.  
  404.   if (n_basic_blocks > 0)
  405.     {
  406.       register char *block_live = (char *) alloca (n_basic_blocks);
  407.       register char *block_marked = (char *) alloca (n_basic_blocks);
  408.       int something_marked = 1;
  409.  
  410.       /* Initialize with just block 0 reachable and no blocks marked.  */
  411.  
  412.       bzero (block_live, n_basic_blocks);
  413.       bzero (block_marked, n_basic_blocks);
  414.       block_live[0] = 1;
  415.       block_live_static = block_live;
  416.  
  417.       /* Pass over all blocks, marking each block that is reachable
  418.      and has not yet been marked.
  419.      Keep doing this until, in one pass, no blocks have been marked.
  420.      Then blocks_live and blocks_marked are identical and correct.
  421.      In addition, all jumps actually reachable have been marked.  */
  422.  
  423.       while (something_marked)
  424.     {
  425.       something_marked = 0;
  426.       for (i = 0; i < n_basic_blocks; i++)
  427.         if (block_live[i] && !block_marked[i])
  428.           {
  429.         block_marked[i] = 1;
  430.         something_marked = 1;
  431.         if (i + 1 < n_basic_blocks && basic_block_drops_in[i + 1])
  432.           block_live[i + 1] = 1;
  433.         insn = basic_block_end[i];
  434.         if (GET_CODE (insn) == JUMP_INSN)
  435.           mark_label_ref (PATTERN (insn), insn, 0);
  436.           }
  437.     }
  438.  
  439.       /* Now delete the code for any basic blocks that can't be reached.
  440.      They can occur because jump_optimize does not recognize
  441.      unreachable loops as unreachable.  */
  442.  
  443.       for (i = 0; i < n_basic_blocks; i++)
  444.     if (!block_live[i])
  445.       {
  446.         insn = basic_block_head[i];
  447.         while (1)
  448.           {
  449.         if (GET_CODE (insn) == BARRIER)
  450.           abort ();
  451.         if (GET_CODE (insn) != NOTE)
  452.           {
  453.             PUT_CODE (insn, NOTE);
  454.             NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
  455.             NOTE_SOURCE_FILE (insn) = 0;
  456.           }
  457.         if (insn == basic_block_end[i])
  458.           {
  459.             /* BARRIERs are between basic blocks, not part of one.
  460.                Delete a BARRIER if the preceding jump is deleted.
  461.                We cannot alter a BARRIER into a NOTE
  462.                because it is too short; but we can really delete
  463.                it because it is not part of a basic block.  */
  464.             if (NEXT_INSN (insn) != 0
  465.             && GET_CODE (NEXT_INSN (insn)) == BARRIER)
  466.               delete_insn (NEXT_INSN (insn));
  467.             break;
  468.           }
  469.         insn = NEXT_INSN (insn);
  470.           }
  471.         /* Each time we delete some basic blocks,
  472.            see if there is a jump around them that is
  473.            being turned into a no-op.  If so, delete it.  */
  474.  
  475.         if (block_live[i - 1])
  476.           {
  477.         register int j;
  478.         for (j = i; j < n_basic_blocks; j++)
  479.           if (block_live[j])
  480.             {
  481.               rtx label;
  482.               insn = basic_block_end[i - 1];
  483.               if (GET_CODE (insn) == JUMP_INSN
  484.               /* An unconditional jump is the only possibility
  485.                  we must check for, since a conditional one
  486.                  would make these blocks live.  */
  487.               && simplejump_p (insn)
  488.               && (label = XEXP (SET_SRC (PATTERN (insn)), 0), 1)
  489.               && INSN_UID (label) != 0
  490.               && BLOCK_NUM (label) == j)
  491.             {
  492.               PUT_CODE (insn, NOTE);
  493.               NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
  494.               NOTE_SOURCE_FILE (insn) = 0;
  495.               if (GET_CODE (NEXT_INSN (insn)) != BARRIER)
  496.                 abort ();
  497.               delete_insn (NEXT_INSN (insn));
  498.             }
  499.               break;
  500.             }
  501.           }
  502.       }
  503.     }
  504. }
  505.  
  506. /* Check expression X for label references;
  507.    if one is found, add INSN to the label's chain of references.
  508.  
  509.    CHECKDUP means check for and avoid creating duplicate references
  510.    from the same insn.  Such duplicates do no serious harm but
  511.    can slow life analysis.  CHECKDUP is set only when duplicates
  512.    are likely.  */
  513.  
  514. static void
  515. mark_label_ref (x, insn, checkdup)
  516.      rtx x, insn;
  517.      int checkdup;
  518. {
  519.   register RTX_CODE code = GET_CODE (x);
  520.   register int i;
  521.   register char *fmt;
  522.  
  523.   if (code == LABEL_REF)
  524.     {
  525.       register rtx label = XEXP (x, 0);
  526.       register rtx y;
  527.       if (GET_CODE (label) != CODE_LABEL)
  528.     abort ();
  529.       /* If the label was never emitted, this insn is junk,
  530.      but avoid a crash trying to refer to BLOCK_NUM (label).
  531.      This can happen as a result of a syntax error
  532.      and a diagnostic has already been printed.  */
  533.       if (INSN_UID (label) == 0)
  534.     return;
  535.       CONTAINING_INSN (x) = insn;
  536.       /* if CHECKDUP is set, check for duplicate ref from same insn
  537.      and don't insert.  */
  538.       if (checkdup)
  539.     for (y = LABEL_REFS (label); y != label; y = LABEL_NEXTREF (y))
  540.       if (CONTAINING_INSN (y) == insn)
  541.         return;
  542.       LABEL_NEXTREF (x) = LABEL_REFS (label);
  543.       LABEL_REFS (label) = x;
  544.       block_live_static[BLOCK_NUM (label)] = 1;
  545.       return;
  546.     }
  547.  
  548.   fmt = GET_RTX_FORMAT (code);
  549.   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
  550.     {
  551.       if (fmt[i] == 'e')
  552.     mark_label_ref (XEXP (x, i), insn, 0);
  553.       if (fmt[i] == 'E')
  554.     {
  555.       register int j;
  556.       for (j = 0; j < XVECLEN (x, i); j++)
  557.         mark_label_ref (XVECEXP (x, i, j), insn, 1);
  558.     }
  559.     }
  560. }
  561.  
  562. /* Determine the which registers are live at the start of each
  563.    basic block of the function whose first insn is F.
  564.    NREGS is the number of registers used in F.
  565.    We allocate the vector basic_block_live_at_start
  566.    and the regsets that it points to, and fill them with the data.
  567.    regset_size and regset_bytes are also set here.  */
  568.  
  569. static void
  570. life_analysis (f, nregs)
  571.      rtx f;
  572.      int nregs;
  573. {
  574.   register regset tem;
  575.   int first_pass;
  576.   int changed;
  577.   /* For each basic block, a bitmask of regs
  578.      live on exit from the block.  */
  579.   regset *basic_block_live_at_end;
  580.   /* For each basic block, a bitmask of regs
  581.      live on entry to a successor-block of this block.
  582.      If this does not match basic_block_live_at_end,
  583.      that must be updated, and the block must be rescanned.  */
  584.   regset *basic_block_new_live_at_end;
  585.   /* For each basic block, a bitmask of regs
  586.      whose liveness at the end of the basic block
  587.      can make a difference in which regs are live on entry to the block.
  588.      These are the regs that are set within the basic block,
  589.      possibly excluding those that are used after they are set.  */
  590.   regset *basic_block_significant;
  591.   register int i;
  592.   rtx insn;
  593.  
  594.   struct obstack flow_obstack;
  595.  
  596.   obstack_init (&flow_obstack);
  597.  
  598.   max_regno = nregs;
  599.  
  600.   bzero (regs_ever_live, sizeof regs_ever_live);
  601.  
  602.   /* Allocate and zero out many data structures
  603.      that will record the data from lifetime analysis.  */
  604.  
  605.   allocate_for_life_analysis ();
  606.  
  607.   reg_next_use = (rtx *) alloca (nregs * sizeof (rtx));
  608.   bzero (reg_next_use, nregs * sizeof (rtx));
  609.  
  610.   /* Set up several regset-vectors used internally within this function.
  611.      Their meanings are documented above, with their declarations.  */
  612.  
  613.   basic_block_live_at_end = (regset *) alloca (n_basic_blocks * sizeof (regset));
  614.   /* Don't use alloca since that leads to a crash rather than an error message
  615.      if there isn't enough space.
  616.      Don't use oballoc since we may need to allocate other things during
  617.      this function on the temporary obstack.  */
  618.   tem = (regset) obstack_alloc (&flow_obstack, n_basic_blocks * regset_bytes);
  619.   bzero (tem, n_basic_blocks * regset_bytes);
  620.   init_regset_vector (basic_block_live_at_end, tem, n_basic_blocks, regset_bytes);
  621.  
  622.   basic_block_new_live_at_end = (regset *) alloca (n_basic_blocks * sizeof (regset));
  623.   tem = (regset) obstack_alloc (&flow_obstack, n_basic_blocks * regset_bytes);
  624.   bzero (tem, n_basic_blocks * regset_bytes);
  625.   init_regset_vector (basic_block_new_live_at_end, tem, n_basic_blocks, regset_bytes);
  626.  
  627.   basic_block_significant = (regset *) alloca (n_basic_blocks * sizeof (regset));
  628.   tem = (regset) obstack_alloc (&flow_obstack, n_basic_blocks * regset_bytes);
  629.   bzero (tem, n_basic_blocks * regset_bytes);
  630.   init_regset_vector (basic_block_significant, tem, n_basic_blocks, regset_bytes);
  631.  
  632.   /* Record which insns refer to any volatile memory
  633.      or for any reason can't be deleted just because they are dead stores.
  634.      Also, delete any insns that copy a register to itself. */
  635.  
  636.   for (insn = f; insn; insn = NEXT_INSN (insn))
  637.     {
  638.       enum rtx_code code1 = GET_CODE (insn);
  639.       if (code1 == CALL_INSN)
  640.     INSN_VOLATILE (insn) = 1;
  641.       else if (code1 == INSN || code1 == JUMP_INSN)
  642.     {
  643.       if (GET_CODE (PATTERN (insn)) == SET
  644.           && GET_CODE (SET_DEST (PATTERN (insn))) == REG
  645.           && GET_CODE (SET_SRC (PATTERN (insn))) == REG
  646.           && REGNO (SET_DEST (PATTERN (insn))) ==
  647.             REGNO (SET_SRC (PATTERN (insn))))
  648.         {
  649.           PUT_CODE (insn, NOTE);
  650.           NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
  651.           NOTE_SOURCE_FILE (insn) = 0;
  652.         }
  653.       else if (GET_CODE (PATTERN (insn)) != USE)
  654.         INSN_VOLATILE (insn) = volatile_refs_p (PATTERN (insn));
  655.     }
  656.       /* A SET that makes space on the stack cannot be dead.
  657.      (Such SETs occur only for allocating variable-size data,
  658.      so they will always have a PLUS or MINUS according to the
  659.      direction of stack growth.)
  660.      Even if this function never uses this stack pointer value,
  661.      signal handlers do!  */
  662.       else if (code1 == INSN && GET_CODE (PATTERN (insn)) == SET
  663.            && SET_DEST (PATTERN (insn)) == stack_pointer_rtx
  664. #ifdef STACK_GROWS_DOWNWARD
  665.            && GET_CODE (SET_SRC (PATTERN (insn))) == MINUS
  666. #else
  667.            && GET_CODE (SET_SRC (PATTERN (insn))) == PLUS
  668. #endif
  669.            && XEXP (SET_SRC (PATTERN (insn)), 0) == stack_pointer_rtx)
  670.     INSN_VOLATILE (insn) = 1;
  671.     }
  672.  
  673.   if (n_basic_blocks > 0)
  674. #ifdef EXIT_IGNORE_STACK
  675.     if (! (EXIT_IGNORE_STACK) || ! frame_pointer_needed)
  676. #endif
  677.       {
  678.     /* If exiting needs the right stack value,
  679.        consider the stack pointer live at the end of the function.  */
  680.     basic_block_live_at_end[n_basic_blocks - 1]
  681.       [STACK_POINTER_REGNUM / REGSET_ELT_BITS]
  682.         |= 1 << (STACK_POINTER_REGNUM % REGSET_ELT_BITS);
  683.     basic_block_new_live_at_end[n_basic_blocks - 1]
  684.       [STACK_POINTER_REGNUM / REGSET_ELT_BITS]
  685.         |= 1 << (STACK_POINTER_REGNUM % REGSET_ELT_BITS);
  686.       }
  687.  
  688.   /* Propagate life info through the basic blocks
  689.      around the graph of basic blocks.
  690.  
  691.      This is a relaxation process: each time a new register
  692.      is live at the end of the basic block, we must scan the block
  693.      to determine which registers are, as a consequence, live at the beginning
  694.      of that block.  These registers must then be marked live at the ends
  695.      of all the blocks that can transfer control to that block.
  696.      The process continues until it reaches a fixed point.  */
  697.  
  698.   first_pass = 1;
  699.   changed = 1;
  700.   while (changed)
  701.     {
  702.       changed = 0;
  703.       for (i = n_basic_blocks - 1; i >= 0; i--)
  704.     {
  705.       int consider = first_pass;
  706.       int must_rescan = first_pass;
  707.       register int j;
  708.  
  709.       /* Set CONSIDER if this block needs thinking about at all
  710.          (that is, if the regs live now at the end of it
  711.          are not the same as were live at the end of it when
  712.          we last thought about it).
  713.          Set must_rescan if it needs to be thought about
  714.          instruction by instruction (that is, if any additional
  715.          reg that is live at the end now but was not live there before
  716.          is one of the significant regs of this basic block).  */
  717.  
  718.       for (j = 0; j < regset_size; j++)
  719.         {
  720.           register int x = basic_block_new_live_at_end[i][j]
  721.               & ~basic_block_live_at_end[i][j];
  722.           if (x)
  723.         consider = 1;
  724.           if (x & basic_block_significant[i][j])
  725.         {
  726.           must_rescan = 1;
  727.           consider = 1;
  728.           break;
  729.         }
  730.         }
  731.  
  732.       if (! consider)
  733.         continue;
  734.  
  735.       /* The live_at_start of this block may be changing,
  736.          so another pass will be required after this one.  */
  737.       changed = 1;
  738.  
  739.       if (! must_rescan)
  740.         {
  741.           /* No complete rescan needed;
  742.          just record those variables newly known live at end
  743.          as live at start as well.  */
  744.           for (j = 0; j < regset_size; j++)
  745.         {
  746.           register int x = basic_block_new_live_at_end[i][j]
  747.             & ~basic_block_live_at_end[i][j];
  748.           basic_block_live_at_start[i][j] |= x;
  749.           basic_block_live_at_end[i][j] |= x;
  750.         }
  751.         }
  752.       else
  753.         {
  754.           /* Update the basic_block_live_at_start
  755.          by propagation backwards through the block.  */
  756.           bcopy (basic_block_new_live_at_end[i],
  757.              basic_block_live_at_end[i], regset_bytes);
  758.           bcopy (basic_block_live_at_end[i],
  759.              basic_block_live_at_start[i], regset_bytes);
  760.           propagate_block (basic_block_live_at_start[i],
  761.                    basic_block_head[i], basic_block_end[i], 0,
  762.                    first_pass ? basic_block_significant[i] : 0,
  763.                    i);
  764.         }
  765.  
  766.       {
  767.         register rtx jump, head;
  768.         /* Update the basic_block_new_live_at_end's of the block
  769.            that falls through into this one (if any).  */
  770.         head = basic_block_head[i];
  771.         jump = PREV_INSN (head);
  772.         if (basic_block_drops_in[i])
  773.           {
  774.         register int from_block = BLOCK_NUM (jump);
  775.         register int j;
  776.         for (j = 0; j < regset_size; j++)
  777.           basic_block_new_live_at_end[from_block][j]
  778.             |= basic_block_live_at_start[i][j];
  779.           }
  780.         /* Update the basic_block_new_live_at_end's of
  781.            all the blocks that jump to this one.  */
  782.         if (GET_CODE (head) == CODE_LABEL)
  783.           for (jump = LABEL_REFS (head);
  784.            jump != head;
  785.            jump = LABEL_NEXTREF (jump))
  786.         {
  787.           register int from_block = BLOCK_NUM (CONTAINING_INSN (jump));
  788.           register int j;
  789.           for (j = 0; j < regset_size; j++)
  790.             basic_block_new_live_at_end[from_block][j]
  791.               |= basic_block_live_at_start[i][j];
  792.         }
  793.       }
  794. #ifdef USE_C_ALLOCA
  795.       alloca (0);
  796. #endif
  797.     }
  798.       first_pass = 0;
  799.     }
  800.  
  801. #if 0 /* This seems unnecessary; life at start of function shouldn't
  802.      mean that the reg is live in more than one basic block.  */
  803.  
  804.   /* Process the regs live at the beginning of the function.
  805.      Mark them as not local to any one basic block.  */
  806.  
  807.   if (n_basic_blocks > 0)
  808.     for (i = FIRST_PSEUDO_REGISTER; i < max_regno; i++)
  809.       if (basic_block_live_at_start[0][i / REGSET_ELT_BITS]
  810.       & (1 << (i % REGSET_ELT_BITS)))
  811.     reg_basic_block[i] = REG_BLOCK_GLOBAL;
  812. #endif
  813.  
  814.   /* Now the life information is accurate.
  815.      Make one more pass over each basic block
  816.      to delete dead stores, create autoincrement addressing
  817.      and record how many times each register is used, is set, or dies.
  818.  
  819.      To save time, we operate directly in basic_block_live_at_end[i],
  820.      thus destroying it (in fact, converting it into a copy of
  821.      basic_block_live_at_start[i]).  This is ok now because
  822.      basic_block_live_at_end[i] is no longer used past this point.  */
  823.  
  824.   for (i = 0; i < n_basic_blocks; i++)
  825.     {
  826.       propagate_block (basic_block_live_at_end[i],
  827.                basic_block_head[i], basic_block_end[i], 1, 0, i);
  828. #ifdef USE_C_ALLOCA
  829.       alloca (0);
  830. #endif
  831.     }
  832.  
  833.   /* Something live during a setjmp should not be put in a register
  834.      on certain machines which restore regs from stack frames
  835.      rather than from the jmpbuf.
  836.      But we don't need to do this for the user's variables, since
  837.      ANSI says only volatile variables need this.  */
  838. #ifdef LONGJMP_RESTORE_FROM_STACK
  839.   for (i = FIRST_PSEUDO_REGISTER; i < nregs; i++)
  840.     if (regs_live_at_setjmp[i / REGSET_ELT_BITS] & (1 << (i % REGSET_ELT_BITS))
  841.     && regno_reg_rtx[i] != 0 && ! REG_USERVAR_P (regno_reg_rtx[i]))
  842.       {
  843.     reg_live_length[i] = -1;
  844.     reg_basic_block[i] = -1;
  845.       }
  846. #endif
  847.  
  848.   obstack_free (&flow_obstack, 0);
  849. }
  850.  
  851. /* Subroutines of life analysis.  */
  852.  
  853. /* Allocate the permanent data structures that represent the results
  854.    of life analysis.  Not static since used also for stupid life analysis.  */
  855.  
  856. void
  857. allocate_for_life_analysis ()
  858. {
  859.   register int i;
  860.   register regset tem;
  861.  
  862.   regset_size = ((max_regno + REGSET_ELT_BITS - 1) / REGSET_ELT_BITS);
  863.   regset_bytes = regset_size * sizeof (*(regset)0);
  864.  
  865.   reg_n_refs = (short *) oballoc (max_regno * sizeof (short));
  866.   bzero (reg_n_refs, max_regno * sizeof (short));
  867.  
  868.   reg_n_sets = (short *) oballoc (max_regno * sizeof (short));
  869.   bzero (reg_n_sets, max_regno * sizeof (short));
  870.  
  871.   reg_n_deaths = (short *) oballoc (max_regno * sizeof (short));
  872.   bzero (reg_n_deaths, max_regno * sizeof (short));
  873.  
  874.   reg_live_length = (int *) oballoc (max_regno * sizeof (int));
  875.   bzero (reg_live_length, max_regno * sizeof (int));
  876.  
  877.   reg_n_calls_crossed = (int *) oballoc (max_regno * sizeof (int));
  878.   bzero (reg_n_calls_crossed, max_regno * sizeof (int));
  879.  
  880.   reg_basic_block = (short *) oballoc (max_regno * sizeof (short));
  881.   for (i = 0; i < max_regno; i++)
  882.     reg_basic_block[i] = REG_BLOCK_UNKNOWN;
  883.  
  884.   basic_block_live_at_start = (regset *) oballoc (n_basic_blocks * sizeof (regset));
  885.   tem = (regset) oballoc (n_basic_blocks * regset_bytes);
  886.   bzero (tem, n_basic_blocks * regset_bytes);
  887.   init_regset_vector (basic_block_live_at_start, tem, n_basic_blocks, regset_bytes);
  888.  
  889.   regs_live_at_setjmp = (regset) oballoc (regset_bytes);
  890.   bzero (regs_live_at_setjmp, regset_bytes);
  891. }
  892.  
  893. /* Make each element of VECTOR point at a regset,
  894.    taking the space for all those regsets from SPACE.
  895.    SPACE is of type regset, but it is really as long as NELTS regsets.
  896.    BYTES_PER_ELT is the number of bytes in one regset.  */
  897.  
  898. static void
  899. init_regset_vector (vector, space, nelts, bytes_per_elt)
  900.      regset *vector;
  901.      regset space;
  902.      int nelts;
  903.      int bytes_per_elt;
  904. {
  905.   register int i;
  906.   register regset p = space;
  907.  
  908.   for (i = 0; i < nelts; i++)
  909.     {
  910.       vector[i] = p;
  911.       p += bytes_per_elt / sizeof (*p);
  912.     }
  913. }
  914.  
  915. /* Compute the registers live at the beginning of a basic block
  916.    from those live at the end.
  917.  
  918.    When called, OLD contains those live at the end.
  919.    On return, it contains those live at the beginning.
  920.    FIRST and LAST are the first and last insns of the basic block.
  921.  
  922.    FINAL is nonzero if we are doing the final pass which is not
  923.    for computing the life info (since that has already been done)
  924.    but for acting on it.  On this pass, we delete dead stores,
  925.    set up the logical links and dead-variables lists of instructions,
  926.    and merge instructions for autoincrement and autodecrement addresses.
  927.  
  928.    SIGNIFICANT is nonzero only the first time for each basic block.
  929.    If it is nonzero, it points to a regset in which we store
  930.    a 1 for each register that is set within the block.
  931.  
  932.    BNUM is the number of the basic block.  */
  933.  
  934. static void
  935. propagate_block (old, first, last, final, significant, bnum)
  936.      register regset old;
  937.      rtx first;
  938.      rtx last;
  939.      int final;
  940.      regset significant;
  941.      int bnum;
  942. {
  943.   register rtx insn;
  944.   rtx prev;
  945.   regset live;
  946.   regset dead;
  947.  
  948.   /* The following variables are used only if FINAL is nonzero.  */
  949.   /* This vector gets one element for each reg that has been live
  950.      at any point in the basic block that has been scanned so far.
  951.      SOMETIMES_MAX says how many elements are in use so far.
  952.      In each element, OFFSET is the byte-number within a regset
  953.      for the register described by the element, and BIT is a mask
  954.      for that register's bit within the byte.  */
  955.   register struct foo { short offset; short bit; } *regs_sometimes_live;
  956.   int sometimes_max = 0;
  957.   /* This regset has 1 for each reg that we have seen live so far.
  958.      It and REGS_SOMETIMES_LIVE are updated together.  */
  959.   regset maxlive;
  960.  
  961.   loop_depth = basic_block_loop_depth[bnum];
  962.  
  963.   dead = (regset) alloca (regset_bytes);
  964.   live = (regset) alloca (regset_bytes);
  965.  
  966.   if (final)
  967.     {
  968.       register int i, offset, bit;
  969.  
  970.       maxlive = (regset) alloca (regset_bytes);
  971.       bcopy (old, maxlive, regset_bytes);
  972.       regs_sometimes_live
  973.     = (struct foo *) alloca (max_regno * sizeof (struct foo));
  974.  
  975.       /* Process the regs live at the end of the block.
  976.      Enter them in MAXLIVE and REGS_SOMETIMES_LIVE.
  977.      Also mark them as not local to any one basic block.  */
  978.  
  979.       for (offset = 0, i = 0; offset < regset_size; offset++)
  980.     for (bit = 1; bit; bit <<= 1, i++)
  981.       {
  982.         if (i == max_regno)
  983.           break;
  984.         if (old[offset] & bit)
  985.           {
  986.         reg_basic_block[i] = REG_BLOCK_GLOBAL;
  987.         regs_sometimes_live[sometimes_max].offset = offset;
  988.         regs_sometimes_live[sometimes_max].bit = i % REGSET_ELT_BITS;
  989.         sometimes_max++;
  990.           }
  991.       }
  992.     }
  993.  
  994.   /* Scan the block an insn at a time from end to beginning.  */
  995.  
  996.   for (insn = last; ; insn = prev)
  997.     {
  998.       prev = PREV_INSN (insn);
  999.  
  1000.       /* If this is a call to `setjmp' et al,
  1001.      warn if any non-volatile datum is live.  */
  1002.  
  1003.       if (final && GET_CODE (insn) == NOTE
  1004.       && NOTE_LINE_NUMBER (insn) == NOTE_INSN_SETJMP)
  1005.     {
  1006.       int i;
  1007.       for (i = 0; i < regset_size; i++)
  1008.         regs_live_at_setjmp[i] |= old[i];
  1009.     }
  1010.  
  1011.       /* Update the life-status of regs for this insn.
  1012.      First DEAD gets which regs are set in this insn
  1013.      then LIVE gets which regs are used in this insn.
  1014.      Then the regs live before the insn
  1015.      are those live after, with DEAD regs turned off,
  1016.      and then LIVE regs turned on.  */
  1017.  
  1018.       if (GET_CODE (insn) == INSN
  1019.       || GET_CODE (insn) == JUMP_INSN
  1020.       || GET_CODE (insn) == CALL_INSN)
  1021.     {
  1022.       register int i;
  1023.       rtx note = find_reg_note (insn, REG_RETVAL, 0);
  1024.  
  1025.       /* If an instruction consists of just dead store(s) on final pass,
  1026.          "delete" it by turning it into a NOTE of type NOTE_INSN_DELETED.
  1027.          We could really delete it with delete_insn, but that
  1028.          can cause trouble for first or last insn in a basic block.  */
  1029.       if (final && insn_dead_p (PATTERN (insn), old, 1)
  1030.           /* Don't delete something that refers to volatile storage!  */
  1031.           && ! INSN_VOLATILE (insn))
  1032.         {
  1033.           rtx oldpat = PATTERN (insn);
  1034.           PUT_CODE (insn, NOTE);
  1035.           NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
  1036.           NOTE_SOURCE_FILE (insn) = 0;
  1037.           /* If this insn is copying the return value from a library call,
  1038.          delete the entire library call.  */
  1039.           if (note && libcall_dead_p (oldpat, old))
  1040.         {
  1041.           rtx first = XEXP (note, 0);
  1042.           rtx prev = insn;
  1043.           while (INSN_DELETED_P (first))
  1044.             first = NEXT_INSN (first);
  1045.           while (prev != first)
  1046.             {
  1047.               prev = PREV_INSN (prev);
  1048.               PUT_CODE (prev, NOTE);
  1049.               NOTE_LINE_NUMBER (prev) = NOTE_INSN_DELETED;
  1050.               NOTE_SOURCE_FILE (prev) = 0;
  1051.             }
  1052.         }
  1053.           goto flushed;
  1054.         }
  1055.  
  1056.       for (i = 0; i < regset_size; i++)
  1057.         {
  1058.           dead[i] = 0;    /* Faster than bzero here */
  1059.           live[i] = 0;    /* since regset_size is usually small */
  1060.         }
  1061.  
  1062.       /* See if this is an increment or decrement that can be
  1063.          merged into a following memory address.  */
  1064. #ifdef AUTO_INC_DEC
  1065.       {
  1066.         register rtx x = PATTERN (insn);
  1067.         /* Does this instruction increment or decrement a register?  */
  1068.         if (final && GET_CODE (x) == SET
  1069.         && GET_CODE (SET_DEST (x)) == REG
  1070.         && (GET_CODE (SET_SRC (x)) == PLUS
  1071.             || GET_CODE (SET_SRC (x)) == MINUS)
  1072.         && XEXP (SET_SRC (x), 0) == SET_DEST (x)
  1073.         && GET_CODE (XEXP (SET_SRC (x), 1)) == CONST_INT
  1074.         /* Ok, look for a following memory ref we can combine with.
  1075.            If one is found, change the memory ref to a PRE_INC
  1076.            or PRE_DEC, cancel this insn, and return 1.
  1077.            Return 0 if nothing has been done.  */
  1078.         && try_pre_increment_1 (insn))
  1079.           goto flushed;
  1080.       }
  1081. #endif /* AUTO_INC_DEC */
  1082.  
  1083.       /* If this is not the final pass, and this insn is copying the
  1084.          value of a library call and it's dead, don't scan the
  1085.          insns that perform the library call, so that the call's
  1086.          arguments are not marked live.  */
  1087.       if (note && insn_dead_p (PATTERN (insn), old, 1)
  1088.           && libcall_dead_p (PATTERN (insn), old))
  1089.         {
  1090.           /* Mark the dest reg as `significant'.  */
  1091.           mark_set_regs (old, dead, PATTERN (insn), 0, significant);
  1092.  
  1093.           insn = XEXP (note, 0);
  1094.           prev = PREV_INSN (insn);
  1095.         }
  1096.       else if (GET_CODE (PATTERN (insn)) == SET
  1097.            && SET_DEST (PATTERN (insn)) == stack_pointer_rtx
  1098.            && GET_CODE (SET_SRC (PATTERN (insn))) == PLUS
  1099.            && XEXP (SET_SRC (PATTERN (insn)), 0) == stack_pointer_rtx
  1100.            && GET_CODE (XEXP (SET_SRC (PATTERN (insn)), 1)) == CONST_INT)
  1101.         /* We have an insn to pop a constant amount off the stack.
  1102.            (Such insns use PLUS regardless of the direction of the stack,
  1103.            and any insn to adjust the stack by a constant is always a pop.)
  1104.            These insns, if not dead stores, have no effect on life.  */
  1105.         ;
  1106.       else
  1107.         {
  1108.           /* LIVE gets the regs used in INSN; DEAD gets those set by it.  */
  1109.           mark_set_regs (old, dead, PATTERN (insn), final ? insn : 0,
  1110.                  significant);
  1111.           mark_used_regs (old, live, PATTERN (insn), final, insn);
  1112.  
  1113.           /* Update OLD for the registers used or set.  */
  1114.           for (i = 0; i < regset_size; i++)
  1115.         {
  1116.           old[i] &= ~dead[i];
  1117.           old[i] |= live[i];
  1118.         }
  1119.  
  1120.           if (GET_CODE (insn) == CALL_INSN)
  1121.         {
  1122.           register int i;
  1123.  
  1124.           /* Each call clobbers all call-clobbered regs.
  1125.              Note that the function-value reg is one of these, and
  1126.              mark_set_regs has already had a chance to handle it.  */
  1127.           for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
  1128.             if (call_used_regs[i])
  1129.               dead[i / REGSET_ELT_BITS] |=
  1130.             (1 << (i % REGSET_ELT_BITS));
  1131.  
  1132.           /* The stack ptr is used (honorarily) by a CALL insn.  */
  1133.           live[STACK_POINTER_REGNUM / REGSET_ELT_BITS]
  1134.             |= (1 << (STACK_POINTER_REGNUM % REGSET_ELT_BITS));
  1135.         }
  1136.  
  1137.           /* Update OLD for the registers used or set.  */
  1138.           for (i = 0; i < regset_size; i++)
  1139.         {
  1140.           old[i] &= ~dead[i];
  1141.           old[i] |= live[i];
  1142.         }
  1143.  
  1144.           if (GET_CODE (insn) == CALL_INSN && final)
  1145.         {
  1146.           /* Any regs live at the time of a call instruction
  1147.              must not go in a register clobbered by calls.
  1148.              Find all regs now live and record this for them.  */
  1149.  
  1150.           register struct foo *p = regs_sometimes_live;
  1151.  
  1152.           for (i = 0; i < sometimes_max; i++, p++)
  1153.             if (old[p->offset] & (1 << p->bit))
  1154.               reg_n_calls_crossed[p->offset * REGSET_ELT_BITS + p->bit]+= 1;
  1155.         }
  1156.         }
  1157.  
  1158.       /* On final pass, add any additional sometimes-live regs
  1159.          into MAXLIVE and REGS_SOMETIMES_LIVE.
  1160.          Also update counts of how many insns each reg is live at.  */
  1161.  
  1162.       if (final)
  1163.         {
  1164.           for (i = 0; i < regset_size; i++)
  1165.         {
  1166.           register int diff = live[i] & ~maxlive[i];
  1167.  
  1168.           if (diff)
  1169.             {
  1170.               register int regno;
  1171.               maxlive[i] |= diff;
  1172.               for (regno = 0; diff && regno < REGSET_ELT_BITS; regno++)
  1173.             if (diff & (1 << regno))
  1174.               {
  1175.                 regs_sometimes_live[sometimes_max].offset = i;
  1176.                 regs_sometimes_live[sometimes_max].bit = regno;
  1177.                 diff &= ~ (1 << regno);
  1178.                 sometimes_max++;
  1179.               }
  1180.             }
  1181.         }
  1182.  
  1183.           {
  1184.         register struct foo *p = regs_sometimes_live;
  1185.         for (i = 0; i < sometimes_max; i++, p++)
  1186.           {
  1187.             if (old[p->offset] & (1 << p->bit))
  1188.               reg_live_length[p->offset * REGSET_ELT_BITS + p->bit]++;
  1189.           }
  1190.           }
  1191.         }
  1192.     }
  1193.     flushed: ;
  1194.       if (insn == first)
  1195.     break;
  1196.     }
  1197. }
  1198.  
  1199. /* Return 1 if X (the body of an insn, or part of it) is just dead stores
  1200.    (SET expressions whose destinations are registers dead after the insn).
  1201.    NEEDED is the regset that says which regs are alive after the insn.  */
  1202.  
  1203. static int
  1204. insn_dead_p (x, needed, strict_low_ok)
  1205.      rtx x;
  1206.      regset needed;
  1207.      int strict_low_ok;
  1208. {
  1209.   register RTX_CODE code = GET_CODE (x);
  1210. #if 0
  1211.   /* Make sure insns to set the stack pointer are never deleted.  */
  1212.   needed[STACK_POINTER_REGNUM / REGSET_ELT_BITS]
  1213.     |= 1 << (STACK_POINTER_REGNUM % REGSET_ELT_BITS);
  1214. #endif
  1215.  
  1216.   /* If setting something that's a reg or part of one,
  1217.      see if that register's altered value will be live.  */
  1218.  
  1219.   if (code == SET)
  1220.     {
  1221.       register rtx r = SET_DEST (x);
  1222.       /* A SET that is a subroutine call cannot be dead.  */
  1223.       if (GET_CODE (SET_SRC (x)) == CALL)
  1224.     return 0;
  1225.       while (GET_CODE (r) == SUBREG
  1226.          || (strict_low_ok && GET_CODE (r) == STRICT_LOW_PART)
  1227.          || GET_CODE (r) == ZERO_EXTRACT
  1228.          || GET_CODE (r) == SIGN_EXTRACT)
  1229.     r = SUBREG_REG (r);
  1230.       if (GET_CODE (r) == REG)
  1231.     {
  1232.       register int regno = REGNO (r);
  1233.       register int offset = regno / REGSET_ELT_BITS;
  1234.       register int bit = 1 << (regno % REGSET_ELT_BITS);
  1235.       return (! (regno < FIRST_PSEUDO_REGISTER && global_regs[regno])
  1236.           && (needed[offset] & bit) == 0);
  1237.     }
  1238.     }
  1239.   /* If performing several activities,
  1240.      insn is dead if each activity is individually dead.
  1241.      Also, CLOBBERs and USEs can be ignored; a CLOBBER or USE
  1242.      that's inside a PARALLEL doesn't make the insn worth keeping.  */
  1243.   else if (code == PARALLEL)
  1244.     {
  1245.       register int i = XVECLEN (x, 0);
  1246.       for (i--; i >= 0; i--)
  1247.     {
  1248.       rtx elt = XVECEXP (x, 0, i);
  1249.       if (!insn_dead_p (elt, needed, strict_low_ok)
  1250.           && GET_CODE (elt) != CLOBBER
  1251.           && GET_CODE (elt) != USE)
  1252.         return 0;
  1253.     }
  1254.       return 1;
  1255.     }
  1256.   /* We do not check CLOBBER or USE here.
  1257.      An insn consisting of just a CLOBBER or just a USE
  1258.      should not be deleted.  */
  1259.   return 0;
  1260. }
  1261.  
  1262. /* If X is the last insn in a libcall, and assuming X is dead,
  1263.    return 1 if the entire library call is dead.
  1264.    This is true if the source of X is a dead register
  1265.    (as well as the destination, which we tested already).
  1266.    If this insn doesn't just copy a register, then we don't
  1267.    have an ordinary libcall.  In that case, cse could not have
  1268.    managed to substitute the source for the dest later on,
  1269.    so we can assume the libcall is dead.  */
  1270.  
  1271. static int
  1272. libcall_dead_p (x, needed)
  1273.      rtx x;
  1274.      regset needed;
  1275. {
  1276.   register RTX_CODE code = GET_CODE (x);
  1277.  
  1278.   if (code == SET)
  1279.     {
  1280.       register rtx r = SET_SRC (x);
  1281.       if (GET_CODE (r) == REG)
  1282.     {
  1283.       register int regno = REGNO (r);
  1284.       register int offset = regno / REGSET_ELT_BITS;
  1285.       register int bit = 1 << (regno % REGSET_ELT_BITS);
  1286.       return (needed[offset] & bit) == 0;
  1287.     }
  1288.     }
  1289.   return 1;
  1290. }
  1291.  
  1292. /* Return 1 if register REGNO was used before it was set.
  1293.    In other words, if it is live at function entry.  */
  1294.  
  1295. int
  1296. regno_uninitialized (regno)
  1297.      int regno;
  1298. {
  1299.   if (n_basic_blocks == 0)
  1300.     return 0;
  1301.  
  1302.   return (basic_block_live_at_start[0][regno / REGSET_ELT_BITS]
  1303.       & (1 << (regno % REGSET_ELT_BITS)));
  1304. }
  1305.  
  1306. /* 1 if register REGNO was alive at a place where `setjmp' was called
  1307.    and was set more than once.  Such regs may be clobbered by `longjmp'.  */
  1308.  
  1309. int
  1310. regno_clobbered_at_setjmp (regno)
  1311.      int regno;
  1312. {
  1313.   return (reg_n_sets[regno] > 1
  1314.       && (regs_live_at_setjmp[regno / REGSET_ELT_BITS]
  1315.           & (1 << (regno % REGSET_ELT_BITS))));
  1316. }
  1317.  
  1318. /* Process the registers that are set within X.
  1319.    Their bits are set to 1 in the regset DEAD,
  1320.    because they are dead prior to this insn.
  1321.  
  1322.    If INSN is nonzero, it is the insn being processed
  1323.    and the fact that it is nonzero implies this is the FINAL pass
  1324.    in propagate_block.  In this case, various info about register
  1325.    usage is stored, LOG_LINKS fields of insns are set up.  */
  1326.  
  1327. static void mark_set_1 ();
  1328.  
  1329. static void
  1330. mark_set_regs (needed, dead, x, insn, significant)
  1331.      regset needed;
  1332.      regset dead;
  1333.      rtx x;
  1334.      rtx insn;
  1335.      regset significant;
  1336. {
  1337.   register RTX_CODE code = GET_CODE (x);
  1338.  
  1339.   if (code == SET || code == CLOBBER)
  1340.     mark_set_1 (needed, dead, x, insn, significant);
  1341.   else if (code == PARALLEL)
  1342.     {
  1343.       register int i;
  1344.       for (i = XVECLEN (x, 0) - 1; i >= 0; i--)
  1345.     {
  1346.       code = GET_CODE (XVECEXP (x, 0, i));
  1347.       if (code == SET || code == CLOBBER)
  1348.         mark_set_1 (needed, dead, XVECEXP (x, 0, i), insn, significant);
  1349.     }
  1350.     }
  1351. }
  1352.  
  1353. /* Process a single SET rtx, X.  */
  1354.  
  1355. static void
  1356. mark_set_1 (needed, dead, x, insn, significant)
  1357.      regset needed;
  1358.      regset dead;
  1359.      rtx x;
  1360.      rtx insn;
  1361.      regset significant;
  1362. {
  1363.   register int regno;
  1364.   register rtx reg = SET_DEST (x);
  1365.   int subreg_p = 0;
  1366.  
  1367.   if (reg == 0)
  1368.     return;
  1369.  
  1370.   if (GET_CODE (reg) == STRICT_LOW_PART)
  1371.     reg = XEXP (reg, 0);
  1372.  
  1373.   if (GET_CODE (reg) == SUBREG || GET_CODE (reg) == ZERO_EXTRACT
  1374.       || GET_CODE (reg) == SIGN_EXTRACT)
  1375.     {
  1376.       /* Modifying just one hardware register of a multi-reg value
  1377.      or just a byte field of a register
  1378.      does not mean the value from before this insn is now dead.
  1379.      But it does mean liveness of that register at the end of the block
  1380.      is significant.  */
  1381.       if (REG_SIZE (SUBREG_REG (reg)) > REG_SIZE (reg))
  1382.     subreg_p = 1;
  1383.  
  1384.       reg = SUBREG_REG (reg);
  1385.     }
  1386.  
  1387.   if (GET_CODE (reg) == REG
  1388.       && (regno = REGNO (reg), regno != FRAME_POINTER_REGNUM)
  1389.       && regno != ARG_POINTER_REGNUM
  1390.       && ! (regno < FIRST_PSEUDO_REGISTER && global_regs[regno]))
  1391.     /* && regno != STACK_POINTER_REGNUM) -- let's try without this.  */
  1392.     {
  1393.       register int offset = regno / REGSET_ELT_BITS;
  1394.       register int bit = 1 << (regno % REGSET_ELT_BITS);
  1395.       int is_needed = 0;
  1396.  
  1397.       /* Mark it as a significant register for this basic block.  */
  1398.       if (significant)
  1399.     significant[offset] |= bit;
  1400.       /* That's all we do, if we are setting only part of the register.  */
  1401.       if (subreg_p)
  1402.     return;
  1403.  
  1404.       /* If entire register being set, mark it as as dead before this insn.  */
  1405.       dead[offset] |= bit;
  1406.       /* A hard reg in a wide mode may really be multiple registers.
  1407.      If so, mark all of them just like the first.  */
  1408.       if (regno < FIRST_PSEUDO_REGISTER)
  1409.     {
  1410.       int n;
  1411.  
  1412.       /* Nothing below is needed for the stack pointer; get out asap.
  1413.          Eg, log links aren't needed, since combine won't use them.  */
  1414.       if (regno == STACK_POINTER_REGNUM)
  1415.         return;
  1416.  
  1417.       n = HARD_REGNO_NREGS (regno, GET_MODE (reg));
  1418.       while (--n > 0)
  1419.         {
  1420.           dead[(regno + n) / REGSET_ELT_BITS]
  1421.         |= 1 << ((regno + n) % REGSET_ELT_BITS);
  1422.           if (significant)
  1423.         significant[(regno + n) / REGSET_ELT_BITS]
  1424.           |= 1 << ((regno + n) % REGSET_ELT_BITS);
  1425.           is_needed |= (needed[(regno + n) / REGSET_ELT_BITS]
  1426.                 & 1 << ((regno + n) % REGSET_ELT_BITS));
  1427.         }
  1428.     }
  1429.       /* Additional data to record if this is the final pass.  */
  1430.       if (insn)
  1431.     {
  1432.       register rtx y = reg_next_use[regno];
  1433.       register int blocknum = BLOCK_NUM (insn);
  1434.  
  1435.       /* If this is a hard reg, record this function uses the reg.
  1436.          `combine.c' will get confused if LOG_LINKs are made
  1437.          for hard regs.  */
  1438.  
  1439.       if (regno < FIRST_PSEUDO_REGISTER)
  1440.         {
  1441.           register int i;
  1442.           i = HARD_REGNO_NREGS (regno, GET_MODE (reg));
  1443.           if (i == 0)
  1444.         i = 1;
  1445.           do
  1446.         regs_ever_live[regno + --i] = 1;
  1447.           while (i > 0);
  1448.  
  1449.           if (! ((needed[offset] & bit) || is_needed))
  1450.         {
  1451.           /* Note that dead stores have already been deleted if poss.
  1452.              If we get here, we have found a dead store that cannot
  1453.              be eliminated (because the insn does something useful).
  1454.              Indicate this by marking the reg set as dying here.  */
  1455.           REG_NOTES (insn)
  1456.             = gen_rtx (EXPR_LIST, REG_DEAD,
  1457.                    reg, REG_NOTES (insn));
  1458.           reg_n_deaths[REGNO (reg)]++;
  1459.         }
  1460.           return;
  1461.         }
  1462.  
  1463.       /* Keep track of which basic blocks each reg appears in.  */
  1464.  
  1465.       if (reg_basic_block[regno] == REG_BLOCK_UNKNOWN)
  1466.         reg_basic_block[regno] = blocknum;
  1467.       else if (reg_basic_block[regno] != blocknum)
  1468.         reg_basic_block[regno] = REG_BLOCK_GLOBAL;
  1469.  
  1470.       /* Count (weighted) references, stores, etc.  */
  1471.       reg_n_refs[regno] += loop_depth;
  1472.       reg_n_sets[regno]++;
  1473.       /* The next use is no longer "next", since a store intervenes.  */
  1474.       reg_next_use[regno] = 0;
  1475.       /* The insns where a reg is live are normally counted elsewhere,
  1476.          but we want the count to include the insn where the reg is set,
  1477.          and the normal counting mechanism would not count it.  */
  1478.       reg_live_length[regno]++;
  1479.       if ((needed[offset] & bit) || is_needed)
  1480.         {
  1481.           /* Make a logical link from the next following insn
  1482.          that uses this register, back to this insn.
  1483.          The following insns have already been processed.  */
  1484.           if (y && (BLOCK_NUM (y) == blocknum))
  1485.         LOG_LINKS (y)
  1486.           = gen_rtx (INSN_LIST, VOIDmode, insn, LOG_LINKS (y));
  1487.         }
  1488.       else
  1489.         {
  1490.           /* Note that dead stores have already been deleted when possible
  1491.          If we get here, we have found a dead store that cannot
  1492.          be eliminated (because the same insn does something useful).
  1493.          Indicate this by marking the reg being set as dying here.  */
  1494.           REG_NOTES (insn)
  1495.         = gen_rtx (EXPR_LIST, REG_DEAD,
  1496.                reg, REG_NOTES (insn));
  1497.           reg_n_deaths[REGNO (reg)]++;
  1498.         }
  1499.     }
  1500.     }
  1501. }
  1502.  
  1503. /* Scan expression X and store a 1-bit in LIVE for each reg it uses.
  1504.    This is done assuming the registers needed from X
  1505.    are those that have 1-bits in NEEDED.
  1506.  
  1507.    On the final pass, FINAL is 1.  This means try for autoincrement
  1508.    and count the uses and deaths of each pseudo-reg.
  1509.  
  1510.    INSN is the containing instruction.  */
  1511.  
  1512. static void
  1513. mark_used_regs (needed, live, x, final, insn)
  1514.      regset needed;
  1515.      regset live;
  1516.      rtx x;
  1517.      rtx insn;
  1518.      int final;
  1519. {
  1520.   register RTX_CODE code;
  1521.   register int regno;
  1522.  
  1523.  retry:
  1524.   code = GET_CODE (x);
  1525.   switch (code)
  1526.     {
  1527.     case LABEL_REF:
  1528.     case SYMBOL_REF:
  1529.     case CONST_INT:
  1530.     case CONST:
  1531.     case CONST_DOUBLE:
  1532.     case CC0:
  1533.     case PC:
  1534.     case CLOBBER:
  1535.     case ADDR_VEC:
  1536.     case ADDR_DIFF_VEC:
  1537.     case ASM_INPUT:
  1538.       return;
  1539.  
  1540. #if defined (HAVE_POST_INCREMENT) || defined (HAVE_POST_DECREMENT)
  1541.     case MEM:
  1542.       /* Here we detect use of an index register which might
  1543.      be good for postincrement or postdecrement.  */
  1544.       if (final)
  1545.     {
  1546.       rtx addr = XEXP (x, 0);
  1547.       register int size = GET_MODE_SIZE (GET_MODE (x));
  1548.  
  1549.       if (GET_CODE (addr) == REG)
  1550.         {
  1551.           register rtx y;
  1552.           regno = REGNO (addr);
  1553.           /* Is the next use an increment that might make auto-increment? */
  1554.           y = reg_next_use[regno];
  1555.           if (y && GET_CODE (PATTERN (y)) == SET
  1556.           && BLOCK_NUM (y) == BLOCK_NUM (insn)
  1557.           /* Can't add side effects to jumps; if reg is spilled and
  1558.              reloaded, there's no way to store back the altered value.  */
  1559.           && GET_CODE (insn) != JUMP_INSN
  1560.           && (y = SET_SRC (PATTERN (y)),
  1561.               (0
  1562. #ifdef HAVE_POST_INCREMENT
  1563.                || GET_CODE (y) == PLUS
  1564. #endif
  1565. #ifdef HAVE_POST_DECREMENT
  1566.                || GET_CODE (y) == MINUS
  1567. #endif
  1568.                )
  1569.               && XEXP (y, 0) == addr
  1570.               && GET_CODE (XEXP (y, 1)) == CONST_INT
  1571.               && INTVAL (XEXP (y, 1)) == size)
  1572.           && dead_or_set_p (reg_next_use[regno], addr))
  1573.         {
  1574.           rtx use = find_use_as_address (PATTERN (insn), addr, 0);
  1575.  
  1576.           /* Make sure this register appears only once in this insn.  */
  1577.           if (use != 0 && use != (rtx) 1)
  1578.             {
  1579.               /* We have found a suitable auto-increment:
  1580.              do POST_INC around the register here,
  1581.              and patch out the increment instruction that follows. */
  1582.               XEXP (x, 0)
  1583.             = gen_rtx (GET_CODE (y) == PLUS ? POST_INC : POST_DEC,
  1584.                    Pmode, addr);
  1585.               /* Record that this insn has an implicit side effect.  */
  1586.               REG_NOTES (insn)
  1587.             = gen_rtx (EXPR_LIST, REG_INC, addr, REG_NOTES (insn));
  1588.  
  1589.               /* Modify the old increment-insn to simply copy
  1590.              the already-incremented value of our register.  */
  1591.               y = reg_next_use[regno];
  1592.               SET_SRC (PATTERN (y)) = addr;
  1593.  
  1594.               /* If that makes it a no-op (copying the register
  1595.              into itself) then change it to a simpler no-op
  1596.              so it won't appear to be a "use" and a "set"
  1597.              of this register.  */
  1598.               if (SET_DEST (PATTERN (y)) == addr)
  1599.             PATTERN (y) = gen_rtx (USE, VOIDmode, const0_rtx);
  1600.  
  1601.               /* Count an extra reference to the reg for the increment.
  1602.              When a reg is incremented.
  1603.              spilling it is worse, so we want to make that
  1604.              less likely.  */
  1605.               reg_n_refs[regno] += loop_depth;
  1606.               /* Count the increment as a setting of the register,
  1607.              even though it isn't a SET in rtl.  */
  1608.               reg_n_sets[regno]++;
  1609.             }
  1610.         }
  1611.         }
  1612.     }
  1613.       break;
  1614. #endif /* HAVE_POST_INCREMENT or HAVE_POST_DECREMENT */
  1615.  
  1616.     case REG:
  1617.       /* See a register other than being set
  1618.      => mark it as needed.  */
  1619.  
  1620.       regno = REGNO (x);
  1621.       if (regno != FRAME_POINTER_REGNUM)
  1622.       /* && regno != ARG_POINTER_REGNUM) -- and without this.  */
  1623.     /* && regno != STACK_POINTER_REGNUM) -- let's try without this.  */
  1624.     {
  1625.       register int offset = regno / REGSET_ELT_BITS;
  1626.       register int bit = 1 << (regno % REGSET_ELT_BITS);
  1627.       int is_needed = 0;
  1628.  
  1629.       live[offset] |= bit;
  1630.       /* A hard reg in a wide mode may really be multiple registers.
  1631.          If so, mark all of them just like the first.  */
  1632.       if (regno < FIRST_PSEUDO_REGISTER)
  1633.         {
  1634.           int n;
  1635.  
  1636.           /* For stack ptr or arg pointer,
  1637.          nothing below can be necessary, so waste no more time.  */
  1638.           if (regno == STACK_POINTER_REGNUM
  1639.           || regno == ARG_POINTER_REGNUM)
  1640.         return;
  1641.           /* No death notes for global register variables;
  1642.          their values are live after this function exits.  */
  1643.           if (global_regs[regno])
  1644.         return;
  1645.  
  1646.           n = HARD_REGNO_NREGS (regno, GET_MODE (x));
  1647.           while (--n > 0)
  1648.         {
  1649.           live[(regno + n) / REGSET_ELT_BITS]
  1650.             |= 1 << ((regno + n) % REGSET_ELT_BITS);
  1651.           is_needed |= (needed[(regno + n) / REGSET_ELT_BITS]
  1652.                 & 1 << ((regno + n) % REGSET_ELT_BITS));
  1653.         }
  1654.         }
  1655.       if (final)
  1656.         {
  1657.           if (regno < FIRST_PSEUDO_REGISTER)
  1658.         {
  1659.           /* If a hard reg is being used,
  1660.              record that this function does use it.  */
  1661.  
  1662.           register int i;
  1663.           i = HARD_REGNO_NREGS (regno, GET_MODE (x));
  1664.           if (i == 0)
  1665.             i = 1;
  1666.           do
  1667.             regs_ever_live[regno + --i] = 1;
  1668.           while (i > 0);
  1669.         }
  1670.           else
  1671.         {
  1672.           /* Keep track of which basic block each reg appears in.  */
  1673.  
  1674.           register int blocknum = BLOCK_NUM (insn);
  1675.  
  1676.           if (reg_basic_block[regno] == REG_BLOCK_UNKNOWN)
  1677.             reg_basic_block[regno] = blocknum;
  1678.           else if (reg_basic_block[regno] != blocknum)
  1679.             reg_basic_block[regno] = REG_BLOCK_GLOBAL;
  1680.  
  1681.           /* Record where each reg is used, so when the reg
  1682.              is set we know the next insn that uses it.  */
  1683.  
  1684.           reg_next_use[regno] = insn;
  1685.  
  1686.           /* Count (weighted) number of uses of each reg.  */
  1687.  
  1688.           reg_n_refs[regno] += loop_depth;
  1689.         }
  1690.  
  1691.           /* Record and count the insns in which a reg dies.
  1692.          If it is used in this insn and was dead below the insn
  1693.          then it dies in this insn.  */
  1694.  
  1695.           if (!(needed[offset] & bit) && !is_needed
  1696.           && ! find_regno_note (insn, REG_DEAD, regno))
  1697.         {
  1698.           REG_NOTES (insn)
  1699.             = gen_rtx (EXPR_LIST, REG_DEAD, x, REG_NOTES (insn));
  1700.           reg_n_deaths[regno]++;
  1701.         }
  1702.         }
  1703.     }
  1704.       return;
  1705.  
  1706.     case SET:
  1707.       {
  1708.     register rtx testreg = SET_DEST (x);
  1709.     int mark_dest = 0;
  1710.  
  1711.     /* Storing in STRICT_LOW_PART is like storing in a reg
  1712.        in that this SET might be dead, so ignore it in TESTREG.
  1713.        but in some other ways it is like using the reg.  */
  1714.     /* Storing in a SUBREG or a bit field is like storing the entire
  1715.        register in that if the register's value is not used
  1716.        then this SET is not needed.  */
  1717.     while (GET_CODE (testreg) == STRICT_LOW_PART
  1718.            || GET_CODE (testreg) == ZERO_EXTRACT
  1719.            || GET_CODE (testreg) == SIGN_EXTRACT
  1720.            || GET_CODE (testreg) == SUBREG)
  1721.       {
  1722.         /* Modifying a single register in an alternate mode
  1723.            does not use any of the old value.  But these other
  1724.            ways of storing in a register do use the old value.  */
  1725.         if (GET_CODE (testreg) == SUBREG
  1726.         && !(REG_SIZE (SUBREG_REG (testreg)) > REG_SIZE (testreg)))
  1727.           ;
  1728.         else
  1729.           mark_dest = 1;
  1730.  
  1731.         testreg = XEXP (testreg, 0);
  1732.       }
  1733.  
  1734.     /* If this is a store into a register,
  1735.        recursively scan the only value being stored,
  1736.        and only if the register's value is live after this insn.
  1737.        If the value being computed here would never be used
  1738.        then the values it uses don't need to be computed either.  */
  1739.  
  1740.     if (GET_CODE (testreg) == REG
  1741.         && (regno = REGNO (testreg), regno != FRAME_POINTER_REGNUM)
  1742.         && regno != ARG_POINTER_REGNUM
  1743.         && ! (regno < FIRST_PSEUDO_REGISTER && global_regs[regno]))
  1744. #if 0 /* This was added in 1.25, but screws up death notes for hard regs.
  1745.      It probably isn't really needed anyway.  */
  1746.         && (regno >= FIRST_PSEUDO_REGISTER
  1747.         || INSN_VOLATILE (insn)))
  1748. #endif
  1749.       {
  1750.         register int offset = regno / REGSET_ELT_BITS;
  1751.         register int bit = 1 << (regno % REGSET_ELT_BITS);
  1752.         if ((needed[offset] & bit)
  1753.         /* If insn refers to volatile, we mustn't delete it,
  1754.            so its inputs are all needed.  */
  1755.         || INSN_VOLATILE (insn))
  1756.           {
  1757.         mark_used_regs (needed, live, SET_SRC (x), final, insn);
  1758.         if (mark_dest)
  1759.           mark_used_regs (needed, live, SET_DEST (x), final, insn);
  1760.           }
  1761.         return;
  1762.       }
  1763.       }
  1764.       break;
  1765.     }
  1766.  
  1767.   /* Recursively scan the operands of this expression.  */
  1768.  
  1769.   {
  1770.     register char *fmt = GET_RTX_FORMAT (code);
  1771.     register int i;
  1772.     
  1773.     for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
  1774.       {
  1775.     if (fmt[i] == 'e')
  1776.       {
  1777.         /* Tail recursive case: save a function call level.  */
  1778.         if (i == 0)
  1779.           {
  1780.         x = XEXP (x, 0);
  1781.         goto retry;
  1782.           }
  1783.         mark_used_regs (needed, live, XEXP (x, i), final, insn);
  1784.       }
  1785.     else if (fmt[i] == 'E')
  1786.       {
  1787.         register int j;
  1788.         for (j = 0; j < XVECLEN (x, i); j++)
  1789.           mark_used_regs (needed, live, XVECEXP (x, i, j), final, insn);
  1790.       }
  1791.       }
  1792.   }
  1793. }
  1794.  
  1795. #ifdef AUTO_INC_DEC
  1796.  
  1797. static int
  1798. try_pre_increment_1 (insn)
  1799.      rtx insn;
  1800. {
  1801.   /* Find the next use of this reg.  If in same basic block,
  1802.      make it do pre-increment or pre-decrement if appropriate.  */
  1803.   rtx x = PATTERN (insn);
  1804.   int amount = ((GET_CODE (SET_SRC (x)) == PLUS ? 1 : -1)
  1805.         * INTVAL (XEXP (SET_SRC (x), 1)));
  1806.   int regno = REGNO (SET_DEST (x));
  1807.   rtx y = reg_next_use[regno];
  1808.   if (y != 0
  1809.       && BLOCK_NUM (y) == BLOCK_NUM (insn)
  1810.       && try_pre_increment (y, SET_DEST (PATTERN (insn)),
  1811.                 amount))
  1812.     {
  1813.       /* We have found a suitable auto-increment
  1814.      and already changed insn Y to do it.
  1815.      So flush this increment-instruction.  */
  1816.       PUT_CODE (insn, NOTE);
  1817.       NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
  1818.       NOTE_SOURCE_FILE (insn) = 0;
  1819.       /* Count a reference to this reg for the increment
  1820.      insn we are deleting.  When a reg is incremented.
  1821.      spilling it is worse, so we want to make that
  1822.      less likely.  */
  1823.       reg_n_refs[regno] += loop_depth;
  1824.       reg_n_sets[regno]++;
  1825.       return 1;
  1826.     }
  1827.   return 0;
  1828. }
  1829.  
  1830. /* Try to change INSN so that it does pre-increment or pre-decrement
  1831.    addressing on register REG in order to add AMOUNT to REG.
  1832.    AMOUNT is negative for pre-decrement.
  1833.    Returns 1 if the change could be made.
  1834.    This checks all about the validity of the result of modifying INSN.  */
  1835.  
  1836. static int
  1837. try_pre_increment (insn, reg, amount)
  1838.      rtx insn, reg;
  1839.      int amount;
  1840. {
  1841.   register rtx use;
  1842.  
  1843.   /* Nonzero if we can try to make a pre-increment or pre-decrement.
  1844.      For example, addl $4,r1; movl (r1),... can become movl +(r1),...  */
  1845.   int pre_ok = 0;
  1846.   /* Nonzero if we can try to make a post-increment or post-decrement.
  1847.      For example, addl $4,r1; movl -4(r1),... can become movl (r1)+,...
  1848.      It is possible for both PRE_OK and POST_OK to be nonzero if the machine
  1849.      supports both pre-inc and post-inc, or both pre-dec and post-dec.  */
  1850.   int post_ok = 0;
  1851.  
  1852.   /* Nonzero if the opportunity actually requires post-inc or post-dec.  */
  1853.   int do_post = 0;
  1854.  
  1855.   /* From the sign of increment, see which possibilities are conceivable
  1856.      on this target machine.  */
  1857. #ifdef HAVE_PRE_INCREMENT
  1858.   if (amount > 0)
  1859.     pre_ok = 1;
  1860. #endif
  1861. #ifdef HAVE_POST_INCREMENT
  1862.   if (amount > 0)
  1863.     post_ok = 1;
  1864. #endif
  1865.  
  1866. #ifdef HAVE_PRE_DECREMENT
  1867.   if (amount < 0)
  1868.     pre_ok = 1;
  1869. #endif
  1870. #ifdef HAVE_POST_DECREMENT
  1871.   if (amount < 0)
  1872.     post_ok = 1;
  1873. #endif
  1874.  
  1875.   if (! (pre_ok || post_ok))
  1876.     return 0;
  1877.  
  1878.   /* It is not safe to add a side effect to a jump insn
  1879.      because if the incremented register is spilled and must be reloaded
  1880.      there would be no way to store the incremented value back in memory.  */
  1881.  
  1882.   if (GET_CODE (insn) == JUMP_INSN)
  1883.     return 0;
  1884.  
  1885.   use = 0;
  1886.   if (pre_ok)
  1887.     use = find_use_as_address (PATTERN (insn), reg, 0);
  1888.   if (post_ok && (use == 0 || use == (rtx) 1))
  1889.     {
  1890.       use = find_use_as_address (PATTERN (insn), reg, -amount);
  1891.       do_post = 1;
  1892.     }
  1893.  
  1894.   if (use == 0 || use == (rtx) 1)
  1895.     return 0;
  1896.  
  1897.   if (GET_MODE_SIZE (GET_MODE (use)) != (amount > 0 ? amount : - amount))
  1898.     return 0;
  1899.  
  1900.   XEXP (use, 0) = gen_rtx (amount > 0
  1901.                ? (do_post ? POST_INC : PRE_INC)
  1902.                : (do_post ? POST_DEC : PRE_DEC),
  1903.                Pmode, reg);
  1904.  
  1905.   /* Record that this insn now has an implicit side effect on X.  */
  1906.   REG_NOTES (insn) = gen_rtx (EXPR_LIST, REG_INC, reg, REG_NOTES (insn));
  1907.   return 1;
  1908. }
  1909.  
  1910. #endif /* AUTO_INC_DEC */
  1911.  
  1912. /* Find the place in the rtx X where REG is used as a memory address.
  1913.    Return the MEM rtx that so uses it.
  1914.    If PLUSCONST is nonzero, search instead for a memory address equivalent to
  1915.    (plus REG (const_int PLUSCONST)).
  1916.  
  1917.    If such an address does not appear, return 0.
  1918.    If REG appears more than once, or is used other than in such an address,
  1919.    return (rtx)1.  */
  1920.  
  1921. static rtx
  1922. find_use_as_address (x, reg, plusconst)
  1923.      register rtx x;
  1924.      rtx reg;
  1925.      int plusconst;
  1926. {
  1927.   enum rtx_code code = GET_CODE (x);
  1928.   char *fmt = GET_RTX_FORMAT (code);
  1929.   register int i;
  1930.   register rtx value = 0;
  1931.   register rtx tem;
  1932.  
  1933.   if (code == MEM && XEXP (x, 0) == reg && plusconst == 0)
  1934.     return x;
  1935.  
  1936.   if (code == MEM && GET_CODE (XEXP (x, 0)) == PLUS
  1937.       && XEXP (XEXP (x, 0), 0) == reg
  1938.       && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
  1939.       && INTVAL (XEXP (XEXP (x, 0), 1)) == plusconst)
  1940.     return x;
  1941.  
  1942.   if (code == SIGN_EXTRACT || code == ZERO_EXTRACT)
  1943.     {
  1944.       /* If REG occurs inside a MEM used in a bit-field reference,
  1945.      that is unacceptable.  */
  1946.       if (find_use_as_address (XEXP (x, 0), reg, 0) != 0)
  1947.     return (rtx) 1;
  1948.     }
  1949.  
  1950.   if (x == reg)
  1951.     return (rtx) 1;
  1952.  
  1953.   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
  1954.     {
  1955.       if (fmt[i] == 'e')
  1956.     {
  1957.       tem = find_use_as_address (XEXP (x, i), reg, plusconst);
  1958.       if (value == 0)
  1959.         value = tem;
  1960.       else if (tem != 0)
  1961.         return (rtx) 1;
  1962.     }
  1963.       if (fmt[i] == 'E')
  1964.     {
  1965.       register int j;
  1966.       for (j = XVECLEN (x, i) - 1; j >= 0; j--)
  1967.         {
  1968.           tem = find_use_as_address (XVECEXP (x, i, j), reg, plusconst);
  1969.           if (value == 0)
  1970.         value = tem;
  1971.           else if (tem != 0)
  1972.         return (rtx) 1;
  1973.         }
  1974.     }
  1975.     }
  1976.  
  1977.   return value;
  1978. }
  1979.  
  1980. /* Write information about registers and basic blocks into FILE.
  1981.    This is part of making a debugging dump.  */
  1982.  
  1983. void
  1984. dump_flow_info (file)
  1985.      FILE *file;
  1986. {
  1987.   register int i;
  1988.   static char *reg_class_names[] = REG_CLASS_NAMES;
  1989.  
  1990.   fprintf (file, "%d registers.\n", max_regno);
  1991.  
  1992.   for (i = FIRST_PSEUDO_REGISTER; i < max_regno; i++)
  1993.     if (reg_n_refs[i])
  1994.       {
  1995.     enum reg_class class;
  1996.     fprintf (file, "\nRegister %d used %d times across %d insns",
  1997.          i, reg_n_refs[i], reg_live_length[i]);
  1998.     if (reg_basic_block[i] >= 0)
  1999.       fprintf (file, " in block %d", reg_basic_block[i]);
  2000.     if (reg_n_deaths[i] != 1)
  2001.       fprintf (file, "; dies in %d places", reg_n_deaths[i]);
  2002.     if (reg_n_calls_crossed[i] == 1)
  2003.       fprintf (file, "; crosses 1 call", reg_n_calls_crossed[i]);
  2004.     else if (reg_n_calls_crossed[i])
  2005.       fprintf (file, "; crosses %d calls", reg_n_calls_crossed[i]);
  2006.     if (PSEUDO_REGNO_BYTES (i) != UNITS_PER_WORD)
  2007.       fprintf (file, "; %d bytes", PSEUDO_REGNO_BYTES (i));
  2008.     class = reg_preferred_class (i);
  2009.     if (class != GENERAL_REGS)
  2010.       {
  2011.         if (reg_preferred_or_nothing (i))
  2012.           fprintf (file, "; %s or none", reg_class_names[(int) class]);
  2013.         else
  2014.           fprintf (file, "; pref %s", reg_class_names[(int) class]);
  2015.       }
  2016.     if (REGNO_POINTER_FLAG (i))
  2017.       fprintf (file, "; pointer");
  2018.     fprintf (file, ".\n");
  2019.       }
  2020.   fprintf (file, "\n%d basic blocks.\n", n_basic_blocks);
  2021.   for (i = 0; i < n_basic_blocks; i++)
  2022.     {
  2023.       register rtx head, jump;
  2024.       register int regno;
  2025.       fprintf (file, "\nBasic block %d: first insn %d, last %d.\n",
  2026.            i,
  2027.            INSN_UID (basic_block_head[i]),
  2028.            INSN_UID (basic_block_end[i]));
  2029.       /* The control flow graph's storage is freed
  2030.      now when flow_analysis returns.
  2031.      Don't try to print it if it is gone.  */
  2032.       if (basic_block_drops_in)
  2033.     {
  2034.       fprintf (file, "Reached from blocks: ");
  2035.       head = basic_block_head[i];
  2036.       if (GET_CODE (head) == CODE_LABEL)
  2037.         for (jump = LABEL_REFS (head);
  2038.          jump != head;
  2039.          jump = LABEL_NEXTREF (jump))
  2040.           {
  2041.         register int from_block = BLOCK_NUM (CONTAINING_INSN (jump));
  2042.         fprintf (file, " %d", from_block);
  2043.           }
  2044.       if (basic_block_drops_in[i])
  2045.         fprintf (file, " previous");
  2046.     }
  2047.       fprintf (file, "\nRegisters live at start:");
  2048.       for (regno = 0; regno < max_regno; regno++)
  2049.     {
  2050.       register int offset = regno / REGSET_ELT_BITS;
  2051.       register int bit = 1 << (regno % REGSET_ELT_BITS);
  2052.       if (basic_block_live_at_start[i][offset] & bit)
  2053.           fprintf (file, " %d", regno);
  2054.     }
  2055.       fprintf (file, "\n");
  2056.     }
  2057.   fprintf (file, "\n");
  2058. }
  2059.